home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsmemory.h < prev    next >
C/C++ Source or Header  |  1996-05-24  |  12KB  |  351 lines

  1. /* Copyright (C) 1993, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsmemory.h */
  20. /* Client interface for memory allocation */
  21.  
  22. /*
  23.  * The allocator knows about two basic kinds of memory: objects, which are
  24.  * aligned and cannot have pointers to their interior, and strings, which are
  25.  * not aligned and which can have interior references.
  26.  *
  27.  * The standard allocator includes a garbage collector.  The garbage
  28.  * collector normally may move objects, relocating pointers to them;
  29.  * however, objects may be declared immovable at the time of allocation.
  30.  * Clients must not attempt to resize immovable objects, and must not create
  31.  * references to substrings of immovable strings.
  32.  */
  33.  
  34. #ifndef gsmemory_INCLUDED
  35. #  define gsmemory_INCLUDED
  36.  
  37. /*
  38.  * Define the (opaque) type for a structure descriptor.  */
  39. typedef struct gs_memory_struct_type_s gs_memory_struct_type_t;
  40. typedef const gs_memory_struct_type_t *gs_memory_type_ptr_t;
  41.  
  42.     /* Accessors for structure types. */
  43.  
  44. typedef client_name_t struct_name_t;
  45.  
  46. /* Get the size of a structure from the descriptor. */
  47. uint gs_struct_type_size(P1(gs_memory_type_ptr_t));
  48.  
  49. /* Get the name of a structure from the descriptor. */
  50. struct_name_t gs_struct_type_name(P1(gs_memory_type_ptr_t));
  51. #define gs_struct_type_name_string(styp)\
  52.   ((const char *)gs_struct_type_name(styp))
  53.  
  54. /* An opaque type for the garbage collector state. */
  55. /* We need this because it is passed to pointer implementation procedures. */
  56. typedef struct gc_state_s gc_state_t;
  57.  
  58. /*
  59.  * A pointer type defines how to mark the referent of the pointer.
  60.  * We define it here so that we can define ptr_struct_type,
  61.  * which is needed so we can define gs_register_struct_root.
  62.  */
  63. typedef struct gs_ptr_procs_s {
  64.  
  65.         /* Unmark the referent of a pointer. */
  66.  
  67. #define ptr_proc_unmark(proc)\
  68.   void proc(P2(void *, gc_state_t *))
  69.     ptr_proc_unmark((*unmark));
  70.  
  71.         /* Mark the referent of a pointer. */
  72.         /* Return true iff it was unmarked before. */
  73.  
  74. #define ptr_proc_mark(proc)\
  75.   bool proc(P2(void *, gc_state_t *))
  76.     ptr_proc_mark((*mark));
  77.  
  78.         /* Relocate a pointer. */
  79.         /* Note that the argument is const, but the */
  80.         /* return value is not: this shifts the compiler */
  81.         /* 'discarding const' warning from the call sites */
  82.         /* (the reloc_ptr routines) to the implementations. */
  83.  
  84. #define ptr_proc_reloc(proc, typ)\
  85.   typ *proc(P2(const typ *, gc_state_t *))
  86.     ptr_proc_reloc((*reloc), void);
  87.  
  88. } gs_ptr_procs_t;
  89. typedef const gs_ptr_procs_t _ds *gs_ptr_type_t;
  90.  
  91. /* Define the pointer type for ordinary structure pointers. */
  92. extern const gs_ptr_procs_t ptr_struct_procs;
  93. #define ptr_struct_type (&ptr_struct_procs)
  94.  
  95. /* Define the pointer types for a pointer to a gs_[const_]string. */
  96. extern const gs_ptr_procs_t ptr_string_procs;
  97. #define ptr_string_type (&ptr_string_procs)
  98. extern const gs_ptr_procs_t ptr_const_string_procs;
  99. #define ptr_const_string_type (&ptr_const_string_procs)
  100.  
  101. /* Register a structure root. */
  102. #define gs_register_struct_root(mem, root, pp, cname)\
  103.   gs_register_root(mem, root, ptr_struct_type, pp, cname)
  104.  
  105. /*
  106.  * Define the type for a GC root.
  107.  */
  108. typedef struct gs_gc_root_s gs_gc_root_t;
  109. struct gs_gc_root_s {
  110.     gs_gc_root_t *next;
  111.     gs_ptr_type_t ptype;
  112.     void **p;
  113. };
  114.  
  115. /* Print a root debugging message. */
  116. #define if_debug_root(c, msg, rp)\
  117.   if_debug4(c, "%s 0x%lx: 0x%lx -> 0x%lx\n",\
  118.         msg, (ulong)(rp), (ulong)(rp)->p, (ulong)*(rp)->p)
  119.  
  120. /* Define the type for memory manager statistics. */
  121. typedef struct gs_memory_status_s {
  122.     /*
  123.      * "Allocated" space is the total amount of space acquired from
  124.      * the parent of the memory manager.  It includes space used for
  125.      * allocated data, space available for allocation, and overhead.
  126.      */
  127.     ulong allocated;
  128.     /*
  129.      * "Used" space is the amount of space used by allocated data
  130.      * plus overhead.
  131.      */
  132.     ulong used;
  133. } gs_memory_status_t;
  134.  
  135. /*
  136.  * Define the memory manager procedural interface.
  137.  */
  138. struct gs_memory_s;
  139. typedef struct gs_memory_s gs_memory_t;
  140. typedef struct gs_memory_procs_s {
  141.  
  142.         /*
  143.          * Allocate bytes.  The bytes are always aligned maximally
  144.          * if the processor requires alignment.
  145.          */
  146.  
  147. #define gs_memory_proc_alloc_bytes(proc)\
  148.   byte *proc(P3(gs_memory_t *mem, uint nbytes, client_name_t cname))
  149. #define gs_alloc_bytes(mem, nbytes, cname)\
  150.   (*(mem)->procs.alloc_bytes)(mem, nbytes, cname)
  151.     gs_memory_proc_alloc_bytes((*alloc_bytes));
  152. #define gs_alloc_bytes_immovable(mem, nbytes, cname)\
  153.   (*(mem)->procs.alloc_bytes_immovable)(mem, nbytes, cname)
  154.     gs_memory_proc_alloc_bytes((*alloc_bytes_immovable));
  155.  
  156.         /*
  157.          * Allocate a structure.
  158.          */
  159.  
  160. #define gs_memory_proc_alloc_struct(proc)\
  161.   void *proc(P3(gs_memory_t *mem, gs_memory_type_ptr_t pstype,\
  162.     client_name_t cname))
  163. #define gs_alloc_struct(mem, typ, pstype, cname)\
  164.   (typ *)(*(mem)->procs.alloc_struct)(mem, pstype, cname)
  165.     gs_memory_proc_alloc_struct((*alloc_struct));
  166. #define gs_alloc_struct_immovable(mem, typ, pstype, cname)\
  167.   (typ *)(*(mem)->procs.alloc_struct_immovable)(mem, pstype, cname)
  168.     gs_memory_proc_alloc_struct((*alloc_struct_immovable));
  169.  
  170.         /*
  171.          * Allocate an array of bytes.
  172.          */
  173.  
  174. #define gs_memory_proc_alloc_byte_array(proc)\
  175.   byte *proc(P4(gs_memory_t *mem, uint num_elements, uint elt_size,\
  176.     client_name_t cname))
  177. #define gs_alloc_byte_array(mem, nelts, esize, cname)\
  178.   (*(mem)->procs.alloc_byte_array)(mem, nelts, esize, cname)
  179.     gs_memory_proc_alloc_byte_array((*alloc_byte_array));
  180. #define gs_alloc_byte_array_immovable(mem, nelts, esize, cname)\
  181.   (*(mem)->procs.alloc_byte_array_immovable)(mem, nelts, esize, cname)
  182.     gs_memory_proc_alloc_byte_array((*alloc_byte_array_immovable));
  183.  
  184.         /*
  185.          * Allocate an array of structures.
  186.          */
  187.  
  188. #define gs_memory_proc_alloc_struct_array(proc)\
  189.   void *proc(P4(gs_memory_t *mem, uint num_elements,\
  190.     gs_memory_type_ptr_t pstype, client_name_t cname))
  191. #define gs_alloc_struct_array(mem, nelts, typ, pstype, cname)\
  192.   (typ *)(*(mem)->procs.alloc_struct_array)(mem, nelts, pstype, cname)
  193.     gs_memory_proc_alloc_struct_array((*alloc_struct_array));
  194. #define gs_alloc_struct_array_immovable(mem, nelts, typ, pstype, cname)\
  195.  (typ *)(*(mem)->procs.alloc_struct_array_immovable)(mem, nelts, pstype, cname)
  196.     gs_memory_proc_alloc_struct_array((*alloc_struct_array_immovable));
  197.  
  198.         /*
  199.          * Resize an object to a new number of elements, considering
  200.          * it as an array of bytes or structures.  The new size may
  201.          * be either larger or smaller than the old.
  202.          */
  203.  
  204. #define gs_memory_proc_resize_object(proc)\
  205.   void *proc(P4(gs_memory_t *mem, void *obj, uint new_num_elements,\
  206.     client_name_t cname))
  207. #define gs_resize_object(mem, obj, newn, cname)\
  208.   (*(mem)->procs.resize_object)(mem, obj, newn, cname)
  209.     gs_memory_proc_resize_object((*resize_object));
  210.  
  211.         /*
  212.          * Get the size of an object (anything except a string).
  213.          */
  214.  
  215. #define gs_memory_proc_object_size(proc)\
  216.   uint proc(P2(gs_memory_t *mem, const void *obj))
  217. #define gs_object_size(mem, obj)\
  218.   (*(mem)->procs.object_size)(mem, obj)
  219.     gs_memory_proc_object_size((*object_size));
  220.  
  221.         /*
  222.          * Get the type of an object (anything except a string).
  223.          * The value returned for byte objects is useful only for
  224.          * printing.
  225.          */
  226.  
  227. #define gs_memory_proc_object_type(proc)\
  228.   gs_memory_type_ptr_t proc(P2(gs_memory_t *mem, const void *obj))
  229. #define gs_object_type(mem, obj)\
  230.   (*(mem)->procs.object_type)(mem, obj)
  231.     gs_memory_proc_object_type((*object_type));
  232.  
  233.         /*
  234.          * Free an object (anything except a string).
  235.          * Note: data == 0 must be allowed, and must be a no-op.
  236.          */
  237.  
  238. #define gs_memory_proc_free_object(proc)\
  239.   void proc(P3(gs_memory_t *mem, void *data, client_name_t cname))
  240. #define gs_free_object(mem, data, cname)\
  241.   (*(mem)->procs.free_object)(mem, data, cname)
  242.     gs_memory_proc_free_object((*free_object));
  243.  
  244.         /*
  245.          * Allocate a string (unaligned bytes).
  246.          */
  247.  
  248. #define gs_memory_proc_alloc_string(proc)\
  249.   byte *proc(P3(gs_memory_t *mem, uint nbytes, client_name_t cname))
  250. #define gs_alloc_string(mem, nbytes, cname)\
  251.   (*(mem)->procs.alloc_string)(mem, nbytes, cname)
  252.     gs_memory_proc_alloc_string((*alloc_string));
  253. #define gs_alloc_string_immovable(mem, nbytes, cname)\
  254.   (*(mem)->procs.alloc_string_immovable)(mem, nbytes, cname)
  255.     gs_memory_proc_alloc_string((*alloc_string_immovable));
  256.  
  257.         /*
  258.          * Resize a string.
  259.          */
  260.  
  261. #define gs_memory_proc_resize_string(proc)\
  262.   byte *proc(P5(gs_memory_t *mem, byte *data, uint old_num, uint new_num,\
  263.     client_name_t cname))
  264. #define gs_resize_string(mem, data, oldn, newn, cname)\
  265.   (*(mem)->procs.resize_string)(mem, data, oldn, newn, cname)
  266.     gs_memory_proc_resize_string((*resize_string));
  267.  
  268.         /*
  269.          * Free a string.
  270.          */
  271.  
  272. #define gs_memory_proc_free_string(proc)\
  273.   void proc(P4(gs_memory_t *mem, byte *data, uint nbytes,\
  274.     client_name_t cname))
  275. #define gs_free_string(mem, data, nbytes, cname)\
  276.   (*(mem)->procs.free_string)(mem, data, nbytes, cname)
  277.     gs_memory_proc_free_string((*free_string));
  278.  
  279.         /*
  280.          * Register a root for the garbage collector.
  281.          */
  282.  
  283. #define gs_memory_proc_register_root(proc)\
  284.   void proc(P5(gs_memory_t *mem, gs_gc_root_t *root, gs_ptr_type_t ptype,\
  285.     void **pp, client_name_t cname))
  286. #define gs_register_root(mem, root, ptype, pp, cname)\
  287.   (*(mem)->procs.register_root)(mem, root, ptype, pp, cname)
  288.     gs_memory_proc_register_root((*register_root));
  289.  
  290.         /*
  291.          * Unregister a root.
  292.          */
  293.  
  294. #define gs_memory_proc_unregister_root(proc)\
  295.   void proc(P3(gs_memory_t *mem, gs_gc_root_t *root, client_name_t cname))
  296. #define gs_unregister_root(mem, root, cname)\
  297.   (*(mem)->procs.unregister_root)(mem, root, cname)
  298.     gs_memory_proc_unregister_root((*unregister_root));
  299.  
  300.         /*
  301.          * Report status (assigned, used).
  302.          */
  303.  
  304. #define gs_memory_proc_status(proc)\
  305.   void proc(P2(gs_memory_t *mem, gs_memory_status_t *status))
  306. #define gs_memory_status(mem, pst)\
  307.   (*(mem)->procs.status)(mem, pst)
  308.     gs_memory_proc_status((*status));
  309.  
  310.         /*
  311.          * Enable or disable the freeing operations: when disabled,
  312.          * these operations return normally but do nothing.  The
  313.          * garbage collector and the PostScript interpreter
  314.          * 'restore' operator need to temporarily disable the
  315.          * freeing functions of (an) allocator(s) while running
  316.          * finalization procedures.
  317.          */
  318.  
  319. #define gs_memory_proc_enable_free(proc)\
  320.   void proc(P2(gs_memory_t *mem, bool enable))
  321. #define gs_enable_free(mem, enable)\
  322.   (*(mem)->procs.enable_free)(mem, enable)
  323.     gs_memory_proc_enable_free((*enable_free));
  324.  
  325. } gs_memory_procs_t;
  326.  
  327. /* Define no-op freeing procedures for use by enable_free. */
  328. gs_memory_proc_free_object(gs_ignore_free_object);
  329. gs_memory_proc_free_string(gs_ignore_free_string);
  330.  
  331. /*
  332.  * An allocator instance.  Subclasses may have state as well.
  333.  */
  334. #define gs_memory_common\
  335.     gs_memory_procs_t procs
  336. struct gs_memory_s {
  337.     gs_memory_common;
  338. };
  339.  
  340. /*
  341.  * gs_malloc and gs_free are historical artifacts, but we still need
  342.  * a memory manager instance that allocates directly from the C heap.
  343.  */
  344. extern gs_memory_t gs_memory_default;
  345. #define gs_malloc(nelts, esize, cname)\
  346.   (void *)gs_alloc_byte_array(&gs_memory_default, nelts, esize, cname)
  347. #define gs_free(data, nelts, esize, cname)\
  348.   gs_free_object(&gs_memory_default, data, cname)
  349.  
  350. #endif                    /* gsmemory_INCLUDED */
  351.